.hero{
    width: 100%;
    height: 450px;
    background-image: url(../images/banne.jpg);
    background-position: center;
    background-size: cover;
    padding: 10px 10%;
    overflow: hidden;
    position: relative;
}

.content{
    margin-top: 8rem;
    max-width: 600px;
}

.content .hero-content{
    position: relative;
    z-index: 1;
}

.content p{
    animation-delay: .5s;
}
.content .btn{
    background: #507550;
    text-decoration: none;
    color: #fff;
    animation-delay: 1s;
}

.content .btn:hover{
    color: #fff;
}

.content .btn:focus{
    box-shadow: none;
}

.content img{
    width: 530px;
    position: absolute;
    bottom: 0;
    right: 10%;
    animation-delay: 1.5s;
}

.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}

@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.section{
   background: #fff;
}

.section_1 .lft img{
    width: 100%;
    border-radius: 10px;
}

.section_1 .rgt{
    display: flex;
    align-items: center;
}

.section_1 .rgt h3{
    text-align: center;
    font-weight: 600;
}

.section_1 .rgt p{
    font-size: 18px;
}

.sec_bg{
    background: url(../images/sec_backgo.webp);
    min-height: 85vh;
    background-size: cover;
}
.second_row{
    flex-direction: row-reverse;
}

.section_2 .img_mask{
    -webkit-mask-image: url(../images/bg_mask.png);
    -webkit-mask-size: 100% 100%;
}

.section_3 h3{
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.section_3 p{
    width: 550px;
    padding: 10px;
    border-radius: 5px;
}

.section_3 .reviews{
    width: 550px;
    margin: auto;
    overflow: hidden;
}

.section_3 .reviews .crt_review{
    display: inline-flex;
    transition: .5s;
}
.section_3 .reviews .crt_review p i{
    float: right;
    font-weight: 600;
}
.slide_anm{
    display: flex;
    justify-content: center;
}

.slide_anm .dot:last-child{
   margin: 0;
}

.slide_ind .dot{
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #aaa;
    margin-right: .5rem;
    cursor: pointer;
}

.slide_ind .active{
    background: #507550;
}

@media screen and (max-width:992px){
    .section_1 .col-sm-6{
        width: 100%;
    }
    .section_1 .rgt{
        padding-top: 2rem;
    }
}

@media screen and (max-width:700px){
    
    .banner_text{
        padding-top: 5rem;
    }

    .banner_text h1{
        font-size: 3rem;
    }
}

@media screen and (max-width:570px){
    .section_3 .reviews{
        width: 340px;
    }
    .section_3 p{
        width: 340px; 
    }
    .content{
        margin-top: 30%;
    }
    .content img{
        display: none;
    }
}

@media screen and (max-width:470px){
    .banner_text h1{
        font-size: 2rem;
    }
}

@media screen and (max-width:370px){
    .section_3 .reviews{
        width: 240px;
    }
    .section_3 p{
        width: 240px; 
    }
}
@media screen and (max-width:240px){
    .section_3 .reviews{
        width: 100%;
    }
}

